home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / OOP_Course / Labs / IB_RPNCalculator / Solution / Stack.h < prev    next >
Text File  |  1992-12-19  |  143b  |  16 lines

  1. // Stack.h
  2. #import <objc/Storage.h>
  3.  
  4. @interface Stack : Storage
  5.  
  6.  
  7. }
  8.  
  9. - push:(float)aNumber;
  10. - (float)pop;
  11. - printStack;
  12. - (float)top;
  13.  
  14. @end
  15.